home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August / CHIP_CD_2005-08.iso / software / BB / BrowserBobDev_en.exe / {app} / Help / whdata / whftdata.js next >
Encoding:
JavaScript  |  2005-05-12  |  458 b   |  25 lines

  1. //    WebHelp 5.10.001
  2. var gTEA = new Array();
  3. function aTE(sTopicTitle, sTopicURL)
  4. {
  5.     var len = gTEA.length;
  6.     gTEA[len] = new topicEntry(sTopicTitle, sTopicURL);
  7. }
  8.  
  9. function topicEntry(sTopicTitle, sTopicURL)
  10. {
  11.     this.sTopicTitle = sTopicTitle;
  12.     this.sTopicURL = sTopicURL;
  13. }
  14.  
  15. function window_OnLoad()
  16. {
  17.     if (parent && parent != this) {
  18.         if (parent.putFtsTData) 
  19.         {
  20.             parent.putFtsTData(gTEA);
  21.         }
  22.     }
  23. }
  24.  
  25. window.onload = window_OnLoad;